1.1.6.11. security.insecureAPI.strcpy (C) Warn on uses of the strcpy and strcat functions.
strcpy
strcat
Examples:
void test() { char x[4]; char *y = "abcd"; strcpy(x, y); // warn }